home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-04-03 | 1.7 KB | 61 lines | [TEXT/MPS ] |
- ; File: E16.AppleShare
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- ASBufferControl EQU $0001
- ASByteRangeLock EQU $0002
- ASSpecialOpenFork EQU $0003
- ASGetPrivileges EQU $0004
- ASSetPrivileges EQU $0005
- ASUserInfo EQU $0006
- ASCopyFile EQU $0007
- ASGetUserPath EQU $0008
- ASOpenDesktop EQU $0009
- ASCloseDesktop EQU $000A
- ASGetComment EQU $000B
- ASSetComment EQU $000C
- ASGetSrvrName EQU $000D
- appleShareNetError EQU $0088 ; AppleShare Network Error
- unknownUser EQU $007E ; specified user name not registered
- unknownGroup EQU $007F ; specified group name not the name of a group
- lockRange EQU $8000
- relativeToEOF EQU $4000
- seeFolders EQU $01
- seeFiles EQU $02
- makeChanges EQU $0004
- folderOwner EQU $80
- onDesktop EQU $0001
- bFOwnAppl EQU $0002 ; used internally
- bFNever EQU $0010 ; never SwitchLaunch
- bFAlways EQU $0020 ; always SwitchLaunch
- shareApplication EQU $0040 ; set if file is a shareable application
- fileIsInited EQU $0100 ; seen by Finder
- fileHasChanged EQU $0200 ; used internally by Finder
- fileIsBusy EQU $0400 ; copied from File System busy bit
- fileNoCopy EQU $0800 ; not used in 5.0 and later, formally BOZO
- fileIsSystem EQU $1000 ; set if file is a system file
- fileHasBundle EQU $2000
- fileIsInvisible EQU $4000
- fileIsLocked EQU $8000
- inTrashWindow EQU $FFFD
- inDesktopWindow EQU $FFFE
- inDiskWindow EQU $0000
- requestReadAccess EQU $0001
- requestWriteAccess EQU $0002
- denyReadAccess EQU $0010
- denyWriteAccess EQU $0020
- dataForkNum EQU $0000
- resourceForkNum EQU $0001
- disableBuffering EQU $8000
- enableBuffering EQU $0000
- ; offset constants for GetServerNameRec
- opCount EQU 0
- ofstNum EQU 2
- ocommandNum EQU 4
- ospathname EQU 6
- oserverName EQU 10
- ozoneName EQU 14
-